home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue45
/
Clinic
/
Client3.dpr
< prev
next >
Wrap
Text File
|
2000-11-02
|
232b
|
15 lines
program Client3;
uses
Forms,
ClientForm3U in 'ClientForm3U.pas' {Form1},
NoDUNBox in 'NoDUNBox.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.